home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / misc / GadMget1_95.lha / GadMget / GadMGet.source.lha / tree.h < prev    next >
C/C++ Source or Header  |  1994-12-17  |  253b  |  20 lines

  1. /* tree.h - declare structures used by tree.c
  2.  * vix 27jun86 [broken out of tree.c]
  3.  */
  4.  
  5.  
  6. #ifndef    _TREE_FLAG
  7. #define    _TREE_FLAG
  8.  
  9.  
  10. typedef    struct    tree_s
  11.     {
  12.         struct    tree_s    *tree_l, *tree_r;
  13.         short        tree_b;
  14.         char        *tree_p;
  15.     }
  16.     tree;
  17.  
  18.  
  19. #endif    _TREE_FLAG
  20.